home *** CD-ROM | disk | FTP | other *** search
- ;----------------------------------------------------------------------------
- ; INET-ON.SCR Intellicomm v2 logon script for iNet 2000.
- ;
- ; Before using this script you must replace the information in the variables
- ; below with your proper iNet logon iformation:
- ;----------------------------------------------------------------------------
-
- variable UserID "Your.ID" ;<-- Enter your ID here
- variable Password "Password" ;<-- Enter your password here
- variable Speed ".." ;<-- .. = 2400 baud, ... = 1200 baud
-
- ;----------------------------------------------------------------------------
- ; You must then set up Intellicomm (and your BIFs) for use with iNet.
- ; The procedure is quite simple and is outlined in "LONG DISTANCE SERVICES"
- ; in the online help (see the Help Index).
- ;
- ; Nothing below this point should need changing.
- ;=============================================================================
-
- send Speed
-
- waitfor "DATAPAC" 30 ERROR
-
- delay 10
- send *[G]city ;send iNet address, as defined in the BIF
-
- waitfor "Code d'usager:" 30 ERROR
- delay 10
- send UserID
-
- waitfor "de securite:" 30 ERROR
- delay 10
- send Password
-
- waitfor "press <CR>" 30 ERROR
- delay 10
- send *[G]phn1 ;phn1 (phone number 1) of the BIF should be
- ;set up with the iNet address of the BBS (e.g.
- ;A CRS GA)
-
- when
- when "your security" ERROR ;password change... abort
- when "Unable to log" ERROR ;can't logon to host
- when "did not accept" ERROR
- waitfor "uter completed" 60 ERROR
-
- exit ;exit the script without an errorcode... signal all's well
-
- ERROR:
- hangup
- exit 1 ;1 signals a problem... don't logon now
-